home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 61 / CDPowerplay61Disc1.iso / patches / BladeToolsEnglish.exe / BladeToolsEnglish / Compilers / Textures Compiler / ConsoleOutput.py < prev    next >
Encoding:
Text File  |  1998-12-30  |  265 b   |  22 lines

  1.  
  2.  
  3.  
  4. import Console
  5. import sys
  6.  
  7.  
  8.  
  9. class ConsoleOutput:
  10.   softspace=1
  11.  
  12.   def write(self,message):
  13.     Console.ConsoleOutput(message)
  14.  
  15.   def flush(self):
  16.     pass
  17.  
  18.  
  19. def InitConsole():
  20.   ConsoleOut=ConsoleOutput()
  21.   sys.stderr=sys.stdout=ConsoleOut
  22.